declarative language - определение. Что такое declarative language
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Что (кто) такое declarative language - определение

PROGRAMMING PARADIGM THAT EXPRESSES THE LOGIC OF A COMPUTATION WITHOUT DESCRIBING ITS CONTROL FLOW
Declarative programming language; Declarative (programming); Declarative language; Declarative Language; Declarative program; Declarative Programming Language; Declarative languages
Найдено результатов: 7685
declarative language         
<language> Any relational language or functional language. These kinds of programming language describe relationships between variables in terms of functions or {inference rules}, and the language executor (interpreter or compiler) applies some fixed algorithm to these relations to produce a result. Declarative languages contrast with imperative languages which specify explicit manipulation of the computer's internal state; or procedural languages which specify an explicit sequence of steps to follow. The most common examples of declarative languages are {logic programming} languages such as Prolog and {functional languages} like Haskell. See also production system. (2004-05-17)
Declarative         
WIKIMEDIA DISAMBIGUATION PAGE
Declarative (disambiguation)
·adj Making declaration, proclamation, or publication; explanatory; assertive; declaratory.
declarative         
WIKIMEDIA DISAMBIGUATION PAGE
Declarative (disambiguation)
[d?'klar?t?v]
¦ adjective of the nature of or making a declaration.
?Grammar (of a sentence or phrase) taking the form of a simple statement.
Derivatives
declaratively adverb
declarative         
WIKIMEDIA DISAMBIGUATION PAGE
Declarative (disambiguation)
a.
Rising declarative         
Draft:Rising declarative
In linguistics, a rising declarative is an utterance which has the syntactic form of a declarative but the rising intonation typically associated with polar interrogatives.
Endangered language         
LANGUAGE THAT IS AT RISK OF FALLING OUT OF USE
Endangered languages; Moribund language; Language endangerment; Endangered Language; The Rarest Language in the World; Vulnerable language; Severely endangered language; Definitely endangered language; Critically endangered language; Endangered language survey
An endangered language or moribund language is a language that is at risk of disappearing as its speakers die out or shift to speaking other languages. Language loss occurs when the language has no more native speakers and becomes a "dead language".
Nafanan language         
SENUFO LANGUAGE
Nafaara language; ISO 639:nfr; Nafaanra language; Nafana language; Fantera language; Pantera language; Nafaanra
Nafaanra (sometimes written Nafaara, pronounced ) or Nafanan is a Senufo language spoken in northwest Ghana, along the border with Ivory Coast, east of Bondoukou. It is spoken by approximately 61,000 people.
Language revitalization         
EFFORT TO PROMOTE AN ENDANGERED LANGUAGE OR REVIVE A DEAD LANGUAGE
Reversing language shift; Language activist; Language revival; Linguistic revival; Revitalized language; Language revitalisation; Linguistic revivalism; Language activism
Language revitalization, also referred to as language revival or reversing language shift, is an attempt to halt or reverse the decline of a language or to revive an extinct one.Tsunoda, Tasaku.
Sacred language         
  • United States of America]].
LANGUAGE THAT IS CULTIVATED FOR RELIGIOUS REASONS
Liturgical language; Liturgical Language; Holy language; Holy Language; Liturgical languages; Ceremonial language; Sacred languages; Ceremonial languages; Ritual language; Initiation language; Sacerdotal language; Liturgincal language
A sacred language, holy language or liturgical language is any language that is cultivated and used primarily in church service or for other religious reasons by people who speak another, primary language in their daily lives.
Spoken language         
LANGUAGE PRODUCED ORALLY
Vocal language; Expressive language; Spoken languages; Oral language; Spoken communication
A spoken language is a language produced by articulate sounds, as opposed to a written language. An oral language or vocal language is a language produced with the vocal tract, as opposed to a sign language, which is produced with the hands and face.

Википедия

Declarative programming

In computer science, declarative programming is a programming paradigm—a style of building the structure and elements of computer programs—that expresses the logic of a computation without describing its control flow.

Many languages that apply this style attempt to minimize or eliminate side effects by describing what the program must accomplish in terms of the problem domain, rather than describing how to accomplish it as a sequence of the programming language primitives (the how being left up to the language's implementation). This is in contrast with imperative programming, which implements algorithms in explicit steps.

Declarative programming often considers programs as theories of a formal logic, and computations as deductions in that logic space. Declarative programming may greatly simplify writing parallel programs.

Common declarative languages include those of database query languages (e.g., SQL, XQuery), regular expressions, logic programming, functional programming, and configuration management systems.